home *** CD-ROM | disk | FTP | other *** search
-
- ;
- page 60,132
- title Turn Cursor Off
- ;
- ; Author: Marty Prahl
- ; Date: 10-Dec-1984
- ; Rev: 1.0
- ;
- ; Copyright (c) 1984 by Marty Prahl
- ;
- ; Abstract:
- ;
- ; Calling Sequence:
- ;
- ; A>CURSOFF
- ;
- ;
- ;----------------------------------------------------------------------
- ;
- ; Cursor Off
- ;
- ;----------------------------------------------------------------------
- ;
- code_seg segment
- assume cs:code_seg,ds:code_seg
-
- cursoff proc far
-
- mov ch,20h ; turn cursor off
- mov ah,1 ; set cursor type
- int 10h ; video interrupt
-
-
- mov al,0 ; no errorlevel
- mov ah,4ch ; terminate
- int 21h ; dos interrupt
-
- cursoff endp
-
- code_seg ends
- end cursoff
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-